home *** CD-ROM | disk | FTP | other *** search
/ Underground / Underground CD1.iso / hack / PDFAQ.ZIP / backnet.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-08  |  2.3 KB  |  99 lines

  1. // backnet.c - by Permission Denied
  2. // pure and weak program to connect FROM some port
  3.  
  4. #include <stdio.h>
  5. #include <netinet/in.h>
  6. #include <sys/socket.h>
  7. #include <netdb.h>
  8. #include <errno.h>
  9. #include <sys/time.h>
  10.  
  11. #define SPORT 2000;
  12.  
  13. struct sockaddr_in sind, server;
  14. int sock;
  15.  
  16. main (int argc, char **argv)
  17. {
  18.  int sport, port, cc;
  19.  struct hostent *fhe;
  20.  
  21.  fd_set arfds, awfds, rfds, wfds;
  22.  char line[1000];
  23.    
  24.  if(argc<3 || argc>4) {
  25.   printf("BackNet by Maxiu\nUsage:\n %s <host> <port> [<s_port>]\n", argv[0]);
  26.   return;
  27.  }
  28.  if(argc==4) sport = atoi(argv[3]); 
  29.   else sport = SPORT;
  30.  port = atoi(argv[2]);
  31.  bzero((char *) &sind, sizeof(sind));
  32.  sind.sin_family = AF_INET;
  33.  if (fhe = gethostbyname(argv[1]))
  34.   bcopy(fhe -> h_addr, (char *) &sind.sin_addr, fhe -> h_length);
  35.   else {
  36.    printf("No host\n"); return;
  37.   }
  38.  sind.sin_port = htons(port);
  39.  sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
  40.  bzero((char *) &server, sizeof(server));
  41.  server.sin_family = AF_INET;
  42.  server.sin_addr.s_addr = INADDR_ANY;
  43.  server.sin_port = htons(sport);
  44.  if(bind(sock, (struct sockaddr *) &server, sizeof(server))) {
  45.   printf("Bind error\n");
  46.   return;
  47.  }
  48.  if(connect(sock, (struct sockaddr *) &sind, sizeof(sind)) != 0) {
  49.   if(errno == ECONNREFUSED) printf("Connection refused\n"); else
  50.    printf("Cannot connect\n");
  51.   return;
  52.  }
  53.  FD_ZERO(&awfds);
  54.  FD_ZERO(&arfds);
  55.  FD_SET(sock, &arfds);
  56.  FD_SET(0, &arfds);
  57.  while (1) {
  58.   bcopy((char *)&arfds, (char *)&rfds, sizeof(rfds));
  59.   bcopy((char *)&awfds, (char *)&wfds, sizeof(wfds));
  60.   if(select(getdtablesize(), &rfds, &wfds, (fd_set *) 0, (struct timeval *) 0) < 0)
  61.    {
  62.     if (errno == EINTR) continue;
  63.     printf("Connecion closed\n");
  64.     break;
  65.    }
  66.   if (FD_ISSET(sock, &rfds)) {
  67.    cc = read(sock, (char *) line, 1000);
  68.    if(cc < 0) {
  69.     printf("socket read error: %d\n", errno);
  70.     break;
  71.    }
  72.    else if (cc == 0) {
  73.     printf("\nConnection closed\n");
  74.     break;
  75.    }
  76.    else
  77.    {
  78.     line[cc]='\0';
  79.     fputs(line, stdout);
  80.    }
  81.   }
  82.   if(FD_ISSET(0, &rfds)) {
  83.    cc = read(0, (char *) line, 1000);
  84.    if (cc<0) {
  85.     printf("stdin read error: %d\n", errno);
  86.     break;
  87.    } else if (cc == 0) {
  88.     printf("\nConnection closed\n");
  89.     break;
  90.    } else
  91.    if(write(sock, line, cc) < 0) {
  92.     printf("socket write error: %d\n", errno);
  93.     break;
  94.    }
  95.   }
  96.  }
  97.  close(sock);
  98. }
  99.